home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2004 #9 / Amiga Plus CD - 2004 - No. 09.iso / amigaplus / tools / amigaos4_only / ifxlite / imagefx3 / rexx / autofx / composite_merge.ifx.pre < prev    next >
Text File  |  2004-08-03  |  499b  |  31 lines

  1. /*
  2.  * Composite_Merge.ifx.pre
  3.  * Written by Thomas Krehbiel
  4.  *
  5.  * Composite tool.
  6.  *
  7.  * Inputs:
  8.  *    Word(Arg(1),1) = Sequence number
  9.  *    Word(Arg(1),2) = Total number of frames (N)
  10.  *
  11.  * Returns:
  12.  *    0 if successful, non-zero on failure
  13.  *
  14.  */
  15.  
  16. OPTIONS RESULTS
  17.  
  18. base = 'Autofx_CompositeMerge_'
  19.  
  20. blendv = GETCLIP(base||'Blend')
  21. IF blendv = '' THEN blendv = 50
  22.  
  23. RequestSlider '"Blend Percentage:"' 1 100 blendv
  24. IF rc ~= 0 THEN EXIT rc
  25.  
  26. blendv = result
  27.  
  28. CALL SETCLIP(base||'Blend', blendv)
  29.  
  30. EXIT
  31.